Welcome![Sign In][Sign Up]
Location:
Search - quick sort

Search list

[Data structsquick-sort-algorithm

Description: 数据结构实验报告 快速排序的完整版算法-Experimental data structure reports the full version of quick sort algorithm
Platform: | Size: 196608 | Author: 格子 | Hits:

[Data structsQuick-Sort

Description: 自己编写的关于快速排序和冒泡排序算法的效率比较,有相关的实现,供大家参考-I have written about the efficiency of the quick sort and bubble sort algorithm, related to implementation, for your reference
Platform: | Size: 7527424 | Author: 周洁 | Hits:

[Data structsQuick-sort

Description: 快速排序,随机生成500个随机数,并用快速排序对这500个随机数进行排序。-Quick sort, randomly generated 500 random numbers, and sort these 500 random numbers using quick sort.
Platform: | Size: 750592 | Author: 随缘 | Hits:

[Data structsquick-sort

Description: 用户输入一堆毫无顺序的数,通过快速排序算法实现数据的有序排序-quick sort
Platform: | Size: 261120 | Author: 乔建国 | Hits:

[CSharpThe-quick-sort-algorithm-C-language

Description: 快速排序算法C语言实现,快速排序算法C语言实现-The quick sort algorithm C language, C language implementation of the Quicksort algorithm
Platform: | Size: 1024 | Author: 王振 | Hits:

[Windows DevelopQuick-sort

Description: 快速排序是数据结构中一种简单的排序。。包含基本的排序思想。-The quick sort is a simple sorting of the data structure. . Contains the basic thinking of the sort.
Platform: | Size: 1024 | Author: 肖果平 | Hits:

[ELanguagequick-sort-using-array-of-pointer

Description: quick sort using array of pointer
Platform: | Size: 9216 | Author: mukul garg | Hits:

[Crack HackAlgorithm-Quick-Sort

Description: This source code about Algorithm Quick Sort.
Platform: | Size: 18432 | Author: khaled | Hits:

[Other01-backpack--quick-sort-algorithm

Description: 本文档涉及01背包,快速排序,归并排序,单源点最短路径等算法-This document covers 01 backpack, quick sort, merge sort, single-source shortest path algorithm
Platform: | Size: 2048 | Author: mick zhang | Hits:

[Otherquick-sort

Description: 快速排序(Quicksort)是对冒泡排序的一种改进。由C. A. R. Hoare在1962年提出。它的基本思想是:通过一趟排序将要排序的数据分割成独立的两部分,其中一部分的所有数据都比另外一部分的所有数据都要小,然后再按此方法对这两部分数据分别进行快速排序,整个排序过程可以递归进行,以此达到整个数据变成有序序列。-Quick Sort (Quicksort) is an improvement on the bubble sort. By C. A. R. Hoare in 1962. The basic idea is: sorted by a trip to sort the data is divided into two independent parts, part all the data than the other part of all data to be small, then this way the two parts were fast data Sort the entire sorting process can be recursively in order to achieve the data into an ordered sequence.
Platform: | Size: 33792 | Author: Pis_Ksss | Hits:

[Embeded LinuxQuick-sort-doubly-linked-list

Description: 双向链表快速排序-Quick sort doubly linked list
Platform: | Size: 2048 | Author: Annabelle | Hits:

[Consolequick-sort

Description: 用随机法实现快速排序,这是自己写的程序源代码,希望能帮助到需要的人。-Random method to achieve quick sort, which is to write the program source code, hoping to help people in need.
Platform: | Size: 1024 | Author: 郭健 | Hits:

[OtherQuick-Sort

Description: 用快速排序的算法实现的排序功能的程序,里面进行的快速排序算法与递归的融合,是算法中的经典-Quick Sort algorithm using the sort function procedures, which carry out fast sorting algorithm with recursive fusion algorithm is a classic
Platform: | Size: 4096 | Author: wanglisa | Hits:

[Data structsWith-partition-method-of-quick-sort

Description: 快速排序的主要思想:找出数组的第一个数字作为参照物,从数组第一个数字往后开始比较,同时,从数组最后一个数字往前比较,如果前面的数字比参照值大,找出来,后面的数字比参照值小找出来,他们相互交换位置,当他们相遇了,停止。这样的结果是,相遇点的前面的数字都是比参照值小的,相遇点后面的值都是比参照值大,然后再相遇点分割成两块,各自进行刚才的操作。-The main idea of the quick sort: find the first number as a reference, the array from an array of the first number back to start, at the same time, the last digit from an array, forward if the previous number larger than the reference value, find out, the number after the smaller than the reference value, they exchange position, when they met, stop. As a result, the front of the meeting point of the Numbers are smaller than the reference value, the meeting point at the back of the values are larger than the reference value, and then meet some split into two pieces, to just their work.
Platform: | Size: 11264 | Author: zhongdecai | Hits:

[Consolequick-sort

Description: 基本排序算法,快速排序的c语言版本,适合新手学习。-Basic sorting algorithm, quick sort c language version, suitable for beginners to learn.
Platform: | Size: 461824 | Author: 钱立祥 | Hits:

[Data structsrandom-quick-sort

Description: 本程序是数据结构中随机快速排序的实现,该算法能在较短的时间复杂度中实现排序。-This program is a data structure in random quick sort of realization, the algorithm can achieve the sort of complexity in a short time in.
Platform: | Size: 1024 | Author: | Hits:

[Data structsquick-sort-and-random-quick-sort

Description: 实现了普通快速排序和随机快速排序,快速排序采用《算法导论》第三版中给出的算法实现。-To achieve a common fast sort and random quick sort, quick sort using the algorithm Introduction in the third edition of the algorithm is given.
Platform: | Size: 2437120 | Author: 七月飞霜 | Hits:

[OtherData-structure-quick-sort

Description: 数据结构快速排序的一个小程序示范 数据结构快速排序的一个小程序示范-Data structure quick sort Data structure quick sort Data structure quick sort
Platform: | Size: 12288 | Author: 王爽 | Hits:

[Otherquick-sort

Description: 利用分治法实现一组数据的快速排序,使其排序时间缩短,并采用c语言编程-Using divide and conquer method to achieve quick sort a set of data, the sorting time is shortened, and the use of C language programming
Platform: | Size: 1024 | Author: 李想 | Hits:

[Other1Source-free-Quick-Sort-in-c-plus-plus

Description: Source-free-Quick-Sort-in-c-plus-plus Hi dear users website source code here to download the source code fast sorting method. We hope that s helpful.
Platform: | Size: 14336 | Author: reza | Hits:
« 1 2 3 45 6 7 8 9 10 ... 50 »

CodeBus www.codebus.net